快递公司
importjava.io.IOException;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.select.Elements;
public class Test {
public static void main(String[] args) throws IOException {
String url = "http://www.kuaidi.com/all/yuantong/806543235435.html";
Document doc = Jsoup.connect(url).get();
Elements links = doc.select( "ul[class=\"timeline a_timeline js_data\"]" );
System.out.println(links.html());
// System.out.println("\u3010\u4e0a\u6d77\u5e02\u666e\u9640\u533a\u66f9\u6768\u957f\u98ce\u516c\u53f8\u3011 \u6d3e\u4ef6\u4eba: \u5f20\u9f99 \u6d3e\u4ef6\u4e2d \u6d3e\u4ef6\u5458\u7535\u8bdd");
}
}